Ein Part Formelement-Objekt, oder formal ein Part:: Feature
, ist ein einfaches Element mit einer topologischen Form, das in der 3D-Ansicht angezeigt werden kann.
Das Part-Formelement ist die Elternklasse der meisten 2D-(Draft-, Sketcher-) und 3D- (Part-, PartDesign-) Objekte, mit Ausnahme von Polygonnetzen, die normalerweise auf demMesh Formelement oder dem FEM Polygonnetz-Objekt für FEM-Objekte basieren.
Vereinfachtes Diagramm der Beziehungen zwischen den Kernobjekten in FreeCAD
Das Part-Formelement ist ein internes Objekt, kann also nicht von der grafischen Oberfläche aus erstellt werden, sondern nur von der Python-Konsole aus, wie im Abschnitt Skripten beschrieben.
Das Part::Feature
wird im Arbeitsbereich Part definiert, kann aber als Basisklasse für skriptgenerierte Objekte in allen Arbeitsbereichen verwendet werden, die 2D- und 3D-Geometrieformen erstellen. Im Wesentlichen sind alle im Arbeitsbereich Part erstellten Objekte Instanzen eines Part::Feature
s.
Das Part::Feature
ist auch die Elternklasse des PartDesign Körpers, der PartDesign Formelemente und der Part Part2DObjekte, die auf 2D-(planare) Formen spezialisiert ist.
Arbeitsbereiche können diesem Grundelement weitere Eigenschaften hinzufügen, um ein Objekt mit komplexem Verhalten zu erzeugen.
Siehe Eigenschaft für alle Eigenschaftstypen, die geskriptete Objekte haben können.
Das Part-Formelement (Klasse Part::Feature
) wird von dem Grundelement App GeoFeature (Klasse App::GeoFeature
) abgeleitet, und erbt alle seine Eigenschaften. Es besitzt auch einige zusätzliche Eigenschaften. Hervorzuheben ist eine Daten-EigenschaftShape, die die Part TopoForm des Objekts speichert. Dies ist die Geometrie, die in der 3D-Ansicht gezeigt wird. Andere Eigenschaften die dieses Objekt besitzt, sind solche die die Darstellung der TopoForm beeinflussen.
Diese sind die im Eigenschafteneditor enthaltenen Eigenschaften. Ausgeblendete Eigenschaften können mit dem Befehl Alle anzeigen im Kontextmenü des Eigenschafteneditors angezeigt werden.
Grundlage
PythonObject
): a custom class associated with this object. This only exists for the Python version. See Scripting.PartShape
): a Part TopoShape class associated with this object.Placement
): the position of the object in the 3D view. The placement is defined by a Base
point (vector), and a Rotation
(axis and angle). See Placement.
0°
(zero degrees).0
and 1
. If any value is above 1
, the vector is normalized so that the magnitude of the vector is 1
. By default, it is the positive Z axis, (0, 0, 1)
.(0, 0, 0)
.String
): the user editable name of this object, it is an arbitrary UTF8 string.String
): a longer, user editable description of this object, it is an arbitrary UTF8 string that may include newlines. By default, it is an empty string ""
.ExpressionEngine
): a list of expressions. By default, it is empty []
.Bool
): whether to display the object or not.
Most objects in FreeCAD have what is called a "viewprovider", which is a class that defines the visual appearance of the object in the 3D view, and in the Tree view. The default viewprovider of Part Feature objects defines the following properties. Scripted objects that are derived from Part Feature will have access to these properties as well.
Base
PythonObject
): a custom viewprovider class associated with this object. This only exists for the Python version. See Scripting.Anzeigeoptionen
Bool
): if it is true
, the object will show the bounding box in the 3D view.Enumeration
): Flat Lines
(regular visualization), Shaded
(no edges), Wireframe
(no faces), Points
(only vertices).Bool
): it defaults to true
, in which case the object will appear in the Tree view; otherwise, the object will be hidden in the tree view. Once an object in the tree is invisible, you can see it again by opening the context menu over the name of the document (right-click), and selecting true
.Bool
): if it is true
, the object appears in the 3D view; otherwise it is invisible. By default this property can be toggled on and off by pressing the Space bar.Objektstil
Angle
): it is a companion to AnsichtDeviation. It is another way to specify how finely to generate the mesh for rendering on screen or when exporting. The default value is 28.5 degrees
, or 0.5 radians
. This is the maximum value, the smaller the value the smoother the appearance will be in the 3D view, and the finer the mesh that will be exported.FloatConstraint
): it is a companion to AnsichtAngular Deflection. It is another way to specify how finely to generate the mesh for rendering on screen or when exporting. The default value is 0.5%
. This is the maximum value, the smaller the value the smoother the appearance will be in the 3D view, and the finer the mesh that will be exported.ColorList
): it is a list of RGB tuples defining colors, similar to AnsichtShape Color. It defaults to a list of one [(0.8, 0.8, 0.8)]
.Enumeration
): Solid
(default), Dashed
, Dotted
, Dashdot
; defines the style of the edges in the 3D view.Enumeration
): Two side
(default), One side
; the illumination comes from two sides or one side in the 3D view.Color
): a tuple of three floating point RGB values (r,g,b)
to define the color of the edges in the 3D view; by default it is (0.09, 0.09, 0.09)
, which is displayed as [25,25,25]
on base 255, almost black .ColorList
): it is a list of RGB tuples defining colors, similar to AnsichtLine Color. It defaults to a list of one [(0.09, 0.09, 0.09)]
.Material
): an App Material associated with the edges in this object. By default it is empty.FloatConstraint
): a float that determines the width in pixels of the edges in the 3D view. It defaults to 2.0
.Color
): similar to AnsichtLine Color, defines the color of the vertices.ColorList
): it is a list of RGB tuples defining colors, similar to AnsichtPoint Color. It defaults to a list of one [(0.09, 0.09, 0.09)]
.Material
): an App Material associated with the vertices in this object. By default it is empty.FloatConstraint
): similar to AnsichtLine Width, defines the size of the vertices.Color
): similar to AnsichtLine Color, defines the color of the faces. It defaults to (0.8, 0.8, 0.8)
, which is displayed as [204, 204, 204]
on base 255, a light gray.Material
): an App Material associated with this object. By default it is empty.Percent
): an integer from 0
to 100
(a percentage) that determines the level of transparency of the faces in the 3D view. A value of 100
indicates completely invisible faces; the faces are invisible but they can still be picked as long as AnsichtSelectable is true
.Auswahl
Enumeration
): it controls the way in which the selection occurs in the 3D view if the object has a Shape, and there are many objects partially covered by others. It defaults to Disabled
, meaning that no special highlighting will occur; Enabled
means that the object will appear on top of any other object when selected; Object
means that the object will appear on top only if the entire object is selected in the Tree view; Element
means that the object will appear on top only if a subelement (vertex, edge, face) is selected in the 3D view.Bool
): if it is true
, the object can be picked with the pointer in the 3D view. Otherwise, the object cannot be selected until this option is set to true
.Enumeration
): it controls the way the object is highlighted. If it is Shape
, the entire shape (vertices, edges, and faces) will be highlighted in the 3D view; if it is BoundBox
a bounding box will appear surrounding the object and will be highlighted.
Parameter für Verdrehwinkel und Winkelabweichung: d < lineare Abweichung, α < Winkelabweichung.
Die Abweichung ist ein Wert in Prozent, der mit den Abmaßen in mm der Bounding-Box des Objekts zusammenhängt. Die Abweichung in mm kann wie folgt berechnet werden:
deviation_in_mm = (w + h + d)/3 * deviation/100
wobei w
, h
, d
die Begrenzungsrahmen Abmessungen sind.
Siehe auch: FreeCAD Grundlagen Skripten und Skriptgenerierte Objekte.
Ein Part Formelement wird mit der addObject()
Methode des Dokuments erstellt.
import FreeCAD as App
doc = App.newDocument()
obj = App.ActiveDocument.addObject("Part::Feature", "Name")
obj.Label = "Custom label"
Für Python-Subclassing sollte ein Part::FeaturePython
-Objekt erstellt werden.
import FreeCAD as App
doc = App.newDocument()
obj = App.ActiveDocument.addObject("Part::FeaturePython", "Name")
obj.Label = "Custom label"
See also: Object name for more information on the properties of the Name
.
The addObject
method has two basic string arguments.
"Part::FeaturePython"
.Name
attribute. If it is not provided, it defaults to the same name as the class, that is, "Part__FeaturePython"
. The Name
can only include simple alphanumeric characters, and the underscore, [_0-9a-zA-Z]
. If other symbols are given, these will be converted to underscores; for example, "A+B:C*"
is converted to "A_B_C_"
.
If desired, the Label
attribute can be changed to a more meaningful text.
Label
can accept any UTF8 string, including accents and spaces. Since the Tree view displays the Label
, it is a good practice to change the Label
to a more descriptive string.Label
is unique, just like the Name
. However, this behavior can be changed in the preferences editor, Edit → Preferences → General → Document → Allow duplicate object labels in one document. This means that in general the Label
may be repeated in the same document; when testing for a specific element the user should rely on the Name
rather than on the Label
.